home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / FileLockError.h < prev    next >
Text File  |  2000-06-23  |  309b  |  21 lines

  1. // FileLockError.h
  2.  
  3. #ifndef FileLockError_h
  4. #define FileLockError_h
  5.  
  6. #ifndef FileAccessError_h
  7. #include "FileAccessError.h"
  8. #endif
  9.  
  10. class FileLockError: public FileAccessError
  11.   {
  12.     public:
  13.         FileLockError( OSErr error )
  14.           : FileAccessError( error )
  15.           {}
  16.         
  17.         // Used for fLckdErr and permErr
  18.   };
  19.  
  20. #endif
  21.